home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1999 - Modelworks Software
- // @Created build 270 cm19990225
-
- // Insert script helper for:
-
- /**
- @Object: Range
- @Method: empty() returns true if the range is empty.
- @Syntax: range.empty()
- @Summary: empty() returns true if the range is empty
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("range.empty()", selection);
- editor.setActive("Insert range.empty");
- }
- }
-
- !!/Script
-